home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Gamer (Italian) 30
/
PC Gamer IT CD 30 1-2.iso
/
MOTS
/
GAMEDATA
/
RESOURCE
/
JKMRES.GOO
/
cog_pow_livethermal.cog
< prev
next >
Wrap
Text File
|
1998-02-25
|
584b
|
34 lines
# Jedi Knight Cog Script
#
# POW_LIVETHERMAL.COG
#
# POWERUP Script - Live Thermal Detonator to be pulled when you hold a TD in hand.
# Simple but deadly : think before you pull... :-)
#
# [YB]
#
# (C) 1997 LucasArts Entertainment Co. All Rights Reserved
symbols
template explosionTpl=+grenade_exp local
message touched
end
# ========================================================================================
code
touched:
CreateThingNR(explosionTpl, GetSenderRef());
DestroyThing(GetSenderRef());
Return;
end